home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / alarm.c,v < prev    next >
Text File  |  1988-07-14  |  923b  |  55 lines

  1. head     1.1;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.1
  9. date     88.07.14.13.32.07;  author ouster;  state Exp;
  10. branches ;
  11. next     ;
  12.  
  13.  
  14. desc
  15. @@
  16.  
  17.  
  18.  
  19. 1.1
  20. log
  21. @Initial revision
  22. @
  23. text
  24. @/*
  25.  * Copyright (c) 1983 Regents of the University of California.
  26.  * All rights reserved.  The Berkeley software License Agreement
  27.  * specifies the terms and conditions for redistribution.
  28.  */
  29.  
  30. #if defined(LIBC_SCCS) && !defined(lint)
  31. static char sccsid[] = "@@(#)alarm.c    5.2 (Berkeley) 3/9/86";
  32. #endif LIBC_SCCS and not lint
  33.  
  34. /*
  35.  * Backwards compatible alarm.
  36.  */
  37. #include <sys/time.h>
  38.  
  39. alarm(secs)
  40.     int secs;
  41. {
  42.     struct itimerval it, oitv;
  43.     register struct itimerval *itp = ⁢
  44.  
  45.     timerclear(&itp->it_interval);
  46.     itp->it_value.tv_sec = secs;
  47.     itp->it_value.tv_usec = 0;
  48.     if (setitimer(ITIMER_REAL, itp, &oitv) < 0)
  49.         return (-1);
  50.     if (oitv.it_value.tv_usec)
  51.         oitv.it_value.tv_sec++;
  52.     return (oitv.it_value.tv_sec);
  53. }
  54. @
  55.